home *** CD-ROM | disk | FTP | other *** search
-
- #include "includes.h"
- #include "installergui_data.h"
-
- /********************************************************************
- *
- * DESCRIPTION
- *
- * set the help text to the help window.
- *
- * IN: application - pointer to the private application structure
- * helptext - the help text :=)
- *
- * OUT: -
- *
- */
-
- /********************************************************************
- *
- * STATIC
- *
- */
-
- /********************************************************************
- *
- * EXTERN
- *
- */
-
- /********************************************************************
- *
- * PUBLIC
- *
- */
-
- /********************************************************************
- *
- * CODE
- *
- */
-
- void __asm igui_SetHelp(register __a0 APTR application, register __a1 char *helptext)
- {
- #ifdef DEBUG
- DEBUG_MAKRO
- #endif
-
- set(((struct Application *) application)->app_HelpText, MUIA_Floattext_Text, helptext);
- }
-